educational

Scripting Treasures Volume 1

Santa brought me a new laptop for Christmas, and while I'm in the process of transferring files from my old box to my new, I've begun uncovering lots of treasures. To start off the New Year, here's a selection from my collection of digital "Post-It" Notes. Enjoy:

Play An Audio Clip OnMouseOver
Ever wish you could have some hot chick purring "Cum In" when a surfer hovered over your "Enter" link (or any of a hundred other cool uses)? Here's the code:

<A href="#" onMouseOver="document.all.music.src='sound.wav'">TEXT or IMAGE</A>
<BGSOUND src="#" id=music loop=1 autostart="true">

Status Bar Masking OnMouseOver
Here's a trick that many newbies want to know how to do, even though most uses of it will be considered "blind linking" and may cause problems with sponsors and link lists, etc. Just add this code within your linking code:

onmouseout="self.status='';return true"
onmouseover="self.status='DESIRED TEXT';return true"

Launch Multiple OnClick Events
Sometimes you wish to fire multiple JavaScripts using a single event handler. One example is using a button to launch a new window while simultaneously changing (or NOT changing) the launching page. There are lots of cool applications for this, and here's a handy snippet of the underlying code to help you along your way. Put this first part in your <HEAD>:

<SCRIPT language="Javascript">
function MultiFuncs() {

onclick="window.open('https://new-window-url.com', '_blank',
'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes')"

onclick="window.open('https://base-window-url.com', '_self')"

}

// MULTI LOAD -->
</SCRIPT>

Then add this part to the button, text, or image link you wish to use:

OnClick="MultiFuncs()"

Hotlinking Protection With .htaccess
To prevent content theft on Apache Webservers with mod_rewrite, make a secure content directory then put all your images and other content you wish to protect into that directory, ensuring that all of your image URLs point to this location. Then make an ".htaccess" file for this directory that contains:

AuthUserFile /dev/null
AuthGroupFile /dev/null

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^https://www.yourdomain.com/subdomain/ [NC]
RewriteCond %{HTTP_REFERER} !^https://yourdomain.com/subdomain/ [NC]
RewriteRule /* https://www.yourdomain.com/subdomain/ [R,L]

Change the domain name values to match your site, then upload this file in ASCII mode into the directory you wish to protect. Calls for content in that directory that come from OUTSIDE the URLs specified above will be redirected to the URL specified.

My Favorite Script Sources
Here's a bookmark collection that shows locations for finding just about any script you wish to have, and quite a few you probably didn't know existed, but may want to have later :)

Well there you have it: a few choice JavaScripts to spice up your pages, a quick bit of code to protect those pages, and a directory of all things scripting. Here's to a "dynamic" New Year!

Copyright © 2025 Adnet Media. All Rights Reserved. XBIZ is a trademark of Adnet Media.
Reproduction in whole or in part in any form or medium without express written permission is prohibited.

More Articles

profile

WIA Profile: Katie

Katie is the ultimate girl’s girl. As community manager at Chaturbate, she answers DMs, remembers names, and shows up for creators and fellow businesswomen when it counts. She’s quick to credit the people around her, and careful to make space for others in every room she enters.

Women in Adult ·
opinion

How to Stay Legally Protected When Policies Get Outdated

The adult industry has long operated in a complex legal environment subject to rapid change. Now, a confluence of age verification laws, lawsuits, credit card processing and data privacy rules has created an urgent need for all industry participants — from major platforms to independent creators — to review and potentially overhaul their legal and operational policies.

Corey D. Silverstein ·
opinion

From Compliance Chaos to Crypto Clarity: Making the Case for Digital Payments in Adult

These are uncertain times for adult merchants. With compliance tightening and age verification mandates rising, the barrier to entry keeps getting higher.

Cathy Beardsley ·
opinion

Real-Time Insights to Streamline E-Payments and Stop Lost Sales

A slow checkout process is more than just annoying — it’s expensive. In a high-risk sector like the adult industry, even small delays or declined transactions can cost businesses thousands in lost revenue every month.

Jonathan Corona ·
profile

FSC's Valentine Leads Charge for Sex Worker Rights and Financial Access

Before ever stepping into a courtroom, Valentine already understood the power of presence. After all, they’ve shimmied on stages as a burlesque performer, consulted behind the scenes for creative businesses and moved through the adult industry not just as an advocate, but as a participant.

Jackie Backman ·
opinion

Breaking Down HB 805 and How it Affects the Adult Industry

North Carolina House Bill 805 was enacted July 29, after the state legislature overrode Governor Josh Stein’s veto. The provisions that relate to the adult industry, imposing requirements for age verification, consent and content removal, are scheduled to become effective Dec. 1. Platforms have until then to update their policies and systems to comply with the new regulations.

Corey D. Silverstein ·
opinion

Staying Compliant With Payment Standards Across Europe and Australia

So, you’ve got your eye on international growth. Smart move. No matter where adult-industry merchants operate, however, one requirement remains consistent: regulatory compliance. This isn’t just a legal checkbox — it’s a critical component of keeping payments flowing and business operations intact.

Jonathan Corona ·
opinion

How to Avoid Copyright Pitfalls When Using Music in Adult Content

When creating an adult video, bringing your vision to life often means assembling just the right ingredients — including the right music. However, adding music to adult content can raise complex legal and ethical issues.

Lawrence G. Walters ·
opinion

New Visa Rules Adult Merchants Need to Know

In December 2024, I shared an update on the upcoming rollout of Visa’s Acquirer Monitoring Program, also known as VAMP. The final version went into effect in June, and enforcement will begin in October. With just a month to go, now is the time to review what’s changing and how to stay compliant.

Cathy Beardsley ·
opinion

WIA Profile: Lainie Speiser

With her fiery red hair and a laugh that practically hugs you, Lainie Speiser is impossible to miss. Having repped some of adult’s biggest stars during her 30-plus years in the business, the veteran publicist is also a treasure trove of tales dating back to the days when print was king and social media not even a glimmer in the industry’s eye.

Women in Adult ·
Show More